f5fae2c1c63486fb877db34369a897248e74f50d,Core/src/org/sleuthkit/autopsy/report/ReportGenerator.java,ReportGenerator,setupProgressPanels,#Map#Map#Map#,157
Before Change
}
if (null != generalModuleStates) {
for (Entry<GeneralReportModule, Boolean> entry : generalModuleStates.entrySet()) {
if (entry.getValue()) {
GeneralReportModule module = entry.getKey();
String reportFilePath = module.getRelativeFilePath();
if (!reportFilePath.isEmpty()) {
generalProgress.put(module, panel.addReport(module.getName(), reportPath + reportFilePath));
} else {
generalProgress.put(module, panel.addReport(module.getName(), null));
}
}
}
After Change
this.progressPanel = panel.addReport(tableModule.getName(), reportPath + reportFilePath);
} else {
this.tableReportModule = tableModule;
this.progressPanel = panel.addReport(tableModule.getName(), null);
}
}
if (null != generalModule) {
String reportFilePath = generalModule.getRelativeFilePath();
if (!reportFilePath.isEmpty()) {
this.generalReportModule = generalModule;
this.progressPanel = panel.addReport(generalModule.getName(), reportPath + reportFilePath);
} else {
this.generalReportModule = generalModule;
this.progressPanel = panel.addReport(generalModule.getName(), null);